home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / edit / yame.zip / YSAMPLES.BAT < prev    next >
DOS Batch File  |  1993-08-21  |  572b  |  17 lines

  1. @echo off
  2. echo Attempting to load dBASE with YAME sample configuration....
  3. rem Check for \DBASE\DBASE on drives C through F
  4. rem Don't overwrite environment variable DXYZ if it exists
  5. if not %dxyz%$==$ goto trypath
  6. rem By using %%d%dxyz%, search will fail after first is found
  7. for %%d in ( C D E F ) do if exist %%d%dxyz%:\dbase\dbase.exe set dxyz=%%d
  8. if %dxyz%$==$ goto trypath
  9. echo Loading dBASE from drive %dxyz%
  10. %dxyz%:\dbase\dbase /c ysamples.cfg ysamples
  11. set dxyz=
  12. goto end
  13. :trypath
  14. echo Loading dBASE on your PATH
  15. dbase /c ysamples.cfg ysamples
  16. :end
  17.